home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / _cleanup.c next >
C/C++ Source or Header  |  1988-07-20  |  1KB  |  52 lines

  1. /* 
  2.  * _cleanup.c --
  3.  *
  4.  *    Source code for the "_cleanup" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: _cleanup.c,v 1.2 88/07/20 18:12:15 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * _cleanup --
  27.  *
  28.  *    This procedure is invoked once just before the process exits.
  29.  *    It flushes all of the open streams.
  30.  *
  31.  * Results:
  32.  *    None.
  33.  *
  34.  * Side effects:
  35.  *    Streams get flushed.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. void
  41. _cleanup()
  42. {
  43.     register FILE *stream;
  44.  
  45.     for (stream = stdioFileStreams; stream != NULL; stream = stream->nextPtr) {
  46.     if (!(stream->flags & STDIO_WRITE)) {
  47.         continue;
  48.     }
  49.     fflush(stream);
  50.     }
  51. }
  52.